home *** CD-ROM | disk | FTP | other *** search
- #! /bin/sh
- set -e
-
-
-
- case "$1" in
- configure)
- update-alternatives \
- --install /usr/share/ubuntu-artwork/home/index.html \
- firefox-homepage /usr/share/ubuntu-artwork/home/firefox-index.html 40 \
- --slave /usr/share/ubuntu-artwork/home/locales \
- firefox-homepage-locales /usr/share/ubuntu-artwork/home/locales-ubuntu
-
- link=/usr/share/gnome/help/libs
- if [ -d "$link" ] && ! [ -L "$link" ] \
- && dpkg --compare-versions "$2" lt-nl 9.04.7
- then
- rmdir "$link"
- ln -s ../../ubuntu-docs/libs "$link"
- fi
- ;;
- esac
-
- exit 0
-